library(Matrix)
library(igraph)

Attaching package: 'igraph'
The following objects are masked from 'package:stats':

    decompose, spectrum
The following object is masked from 'package:base':

    union
library(data.table)
library(doParallel)
Loading required package: foreach
Loading required package: iterators
Loading required package: parallel
set.seed(42)

allSig <- fread("~/Code/tissue_biomarker/biomarker_res/allSigBio.csv")
gene_info <- fread("~/Code/tissue_biomarker/geneInfo.csv")

gene_info[, V1 := gsub(V1, pat = "\\.[0-9]+$", rep = "")]
gene_symbol <- gene_info[, .(V1, gene_name)]

colnames(gene_symbol)[1] <- "Gene"

drugTargetInfo <- fread("~/Code/Github/pachyderm/Annotations/DrugTargetCompilation_updated.csv")


drugTargetInfo <- drugTargetInfo[BHKLAB.DRUGID %in% allSig$Drug]

drugTargetInfo <- drugTargetInfo[, .("TARGET" = unique(TARGET_NAME)), BHKLAB.DRUGID]

drugTargetInfo <- drugTargetInfo[complete.cases(drugTargetInfo), ]

drugTargetInfo <- drugTargetInfo[drugTargetInfo$TARGET %in% gene_info$gene_name, ]

drugTargetInfo[, TARGET := gene_info$V1[match(TARGET, gene_info$gene_name)]]

2a

Loading in Reactome Pathway and creating a network.

reactomeBottom <- fread("~/Code/tissue_biomarker/pathways/ReactomeBottom.txt")
reactomeBottom <- reactomeBottom[V6 == "Homo sapiens"]
reactomeBottom <- reactomeBottom[grepl(x = V1, pat = "ENSG")]


reactomeGenes <- unique(reactomeBottom[[1]])


reactomeMatrix <- matrix(0, nrow = length(reactomeGenes), ncol = length(reactomeGenes))

colnames(reactomeMatrix) <- rownames(reactomeMatrix) <- reactomeGenes


reactomeBottomPathways <- split(reactomeBottom, by = "V4")


for (pathway in reactomeBottomPathways) {
    reactomeMatrix[pathway[[1]], pathway[[1]]] <- 1
}

reactomeGraph <- graph_from_adjacency_matrix(reactomeMatrix, weighted = "1", mode = "undirected")

I think 3 comparisons are in order: Target to random gene, Random Gene to Biomarker, and Random Gene to Random

First, lets identify the distances between markers and targets.

reactomeDist <- distances(reactomeGraph)
distance.list <- list()
random_to_targets.list <- list()
random_to_random.list <- list()

for (drug in drugTargetInfo[, unique(BHKLAB.DRUGID)]) {
    targets <- drugTargetInfo[BHKLAB.DRUGID == drug, TARGET]

    markers <- allSig[Drug == drug, Gene]

    tg <- unique(na.omit(match(targets, colnames(reactomeMatrix))))

    mk <- unique(na.omit(match(markers, colnames(reactomeMatrix))))

    num_targets <- length(tg)
    num_markers <- length(mk)

    mk_random <- sample(length(vertex.attributes(reactomeGraph)$name), num_markers)
    tg_random <- sample(length(vertex.attributes(reactomeGraph)$name), num_targets)

    if(!length(tg)||!length(mk)) next
    distance.list[[drug]] <- distances(reactomeGraph, tg, mk)
    random_to_targets.list[[drug]] <- distances(reactomeGraph, tg, mk_random)
    random_to_random.list[[drug]] <- distances(reactomeGraph, tg_random, mk_random)
}

Now we take the minimum distance from each marker (real or random) to each target (real or random).

distance.list.min <- lapply(distance.list, \(x) return(apply(x, 2, min)))
random_to_random.list.min <- lapply(random_to_random.list, \(x) return(apply(x, 2, min)))
random_to_targets.list.min <- lapply(random_to_targets.list, \(x) return(apply(x, 2, min)))

distance.list.m <- rbindlist(lapply(names(distance.list.min), \(nm){
    return(data.frame(Drug = nm, Gene = names(distance.list.min[[nm]]), Distance = distance.list.min[[nm]]))
}))


random_to_random.list.m <- rbindlist(lapply(names(random_to_random.list.min), \(nm){
    return(data.frame(Drug = nm, Gene = names(random_to_random.list.min[[nm]]), Distance = random_to_random.list.min[[nm]]))
}))

random_to_targets.list.m <- rbindlist(lapply(names(random_to_targets.list.min), \(nm){
    return(data.frame(Drug = nm, Gene = names(random_to_targets.list.min[[nm]]), Distance = random_to_targets.list.min[[nm]]))
}))

Lets Plot.

distance.list.m[,Cat := "Biomarker to Target"]
random_to_random.list.m[, Cat := "Random to Random"]
random_to_targets.list.m[, Cat := "Random to Target"]
toPlot <- rbindlist(list(distance.list.m, random_to_random.list.m, random_to_targets.list.m))
toPlot[, weight := 1 / .N, Cat]
toPlot$Distance <- factor(toPlot$Distance)

library(ggplot2)

ggplot(toPlot, aes(x = Distance, weight = weight)) +
    geom_bar() +
    facet_grid(rows = vars(Cat)) +
    theme_bw() +
    theme(legend.position = "None")

toPlot[, weight := 1 / .N, Cat]
pdf("figures/reactomeNetworkMinDistanceDist.pdf", height = 4, width = 3)
ggplot(toPlot, aes(x = Distance, weight = weight)) +
    geom_bar() +
    facet_grid(rows = vars(Cat)) +
    theme_bw() +
    theme(legend.position = "None")
dev.off()
png 
  2 
# ggplot(toPlot, aes(x = Distance, fill = Cat, weight = weight)) +
#     geom_bar() +
#     facet_grid(rows = vars(Cat)) +
#     theme_bw()

# ggplot(toPlot, aes(x = Distance, fill = Cat, weight = weight)) +
#     geom_bar(position=position_identity(), alpha=0.6) +
#     theme_bw()

toPlot2 <- toPlot[, .(Proportion = sum(weight)), .(Cat, Distance)][order(Proportion, decreasing = TRUE)]

ggplot(toPlot2, aes(x = Distance, y = Proportion, fill = Cat)) +
    geom_col(position = position_identity(), alpha = 0.6) +
    theme_bw() +
    theme(legend.position = c(0.75, 0.8))

pdf("figures/reactomeNetworkMinDistanceDistOverlapping.pdf", height = 4, width = 4)
ggplot(toPlot2, aes(x = Distance, y = Proportion, fill = Cat)) +
    geom_col(position = position_identity(), alpha = 0.6) +
    theme_bw() +
    theme(legend.position = c(0.75, 0.8))
dev.off()
png 
  2 
toPlot$Cat <- factor(toPlot$Cat, levels = c("Biomarker to Target", "Random to Target", "Random to Random"))

ggplot(toPlot, aes(x = Distance, weight = weight, fill = Cat)) +
    geom_bar(position = "dodge") +
    ylab("Proportion") +
    theme_bw() +
    theme(legend.position = c(0.75, 0.8), legend.title = element_blank()) + scale_fill_brewer(palette = "Set2")

pdf("figures/reactomeNetworkMinDistanceDistDodge.pdf", height = 4, width = 4)
ggplot(toPlot, aes(x = Distance, weight = weight, fill = Cat)) +
    geom_bar(position = "dodge") +
    ylab("Proportion") +
    theme_bw() +
    theme(legend.position = c(0.75, 0.8), legend.title = element_blank()) + scale_fill_brewer(palette = "Set2")
dev.off()
png 
  2 

Lets print out the statistics as well:

mean(reactomeDist[is.finite(reactomeDist)])
[1] 2.900658
toPlot$Distance <- as.numeric(as.character(toPlot$Distance))

my.split <- split(toPlot$Distance, f = toPlot$Cat)

wilcox.test(my.split[["Biomarker to Target"]],
            my.split[["Random to Target"]])

    Wilcoxon rank sum test with continuity correction

data:  my.split[["Biomarker to Target"]] and my.split[["Random to Target"]]
W = 3585156, p-value = 5.107e-14
alternative hypothesis: true location shift is not equal to 0
wilcox.test(
    my.split[["Random to Target"]],
    my.split[["Random to Random"]]
)

    Wilcoxon rank sum test with continuity correction

data:  my.split[["Random to Target"]] and my.split[["Random to Random"]]
W = 4275996, p-value = 1.887e-07
alternative hypothesis: true location shift is not equal to 0
wilcox.test(
    my.split[["Biomarker to Target"]],
    my.split[["Random to Random"]]
)

    Wilcoxon rank sum test with continuity correction

data:  my.split[["Biomarker to Target"]] and my.split[["Random to Random"]]
W = 3890058, p-value = 0.06468
alternative hypothesis: true location shift is not equal to 0

2b

allRes <- fread("~/Code/tissue_biomarker/rnaResults/biomarker_res/meta_res_pharmacodb.csv")
allSig <- allRes[BF_p_all < 0.05]
allSig[, Is_Target := "No"]
allSig[!Drug %in% drugTargetInfo$BHKLAB.DRUGID, Is_Target := "No Target Info"]
allSig[, Target_Pathway_Distance := ifelse(Gene %in% colnames(distance.list[[Drug]]), min(distance.list[[Drug]][, Gene]), NA_real_), .(Drug, Gene)]
allSig[drugTargetInfo, Is_Target := "Yes", on = c("Drug" = "BHKLAB.DRUGID", Gene = "TARGET")]
pdf("figures/abs_estimate_vs_distance_to_target.pdf", height = 3, width = 4)
ggplot(allSig, 
    aes(factor(Target_Pathway_Distance, exclude=c(NA_real_,Inf)), y=abs(estimate)))+geom_boxplot() + 
theme_bw()+  xlab("Distance to Drug Target") + ylab("Absolute Correlation\nwith Drug Response")
dev.off()
png 
  2 
toTest <- copy(allSig)

toTest$Target_Pathway_Distance <- factor(toTest$Target_Pathway_Distance, exclude = c(NA_real_, Inf))
toTest$estimate <- abs(toTest$estimate)

kruskal.test(estimate ~ Target_Pathway_Distance, toTest)

    Kruskal-Wallis rank sum test

data:  estimate by Target_Pathway_Distance
Kruskal-Wallis chi-squared = 28.882, df = 5, p-value = 2.446e-05
wilcox.test(toTest[Target_Pathway_Distance == 0,estimate], toTest[Target_Pathway_Distance!=0, estimate])

    Wilcoxon rank sum test with continuity correction

data:  toTest[Target_Pathway_Distance == 0, estimate] and toTest[Target_Pathway_Distance != 0, estimate]
W = 19113, p-value = 0.04391
alternative hypothesis: true location shift is not equal to 0
wilcox.test(toTest[Target_Pathway_Distance == 5, estimate], toTest[Target_Pathway_Distance != 5, estimate])

    Wilcoxon rank sum test with continuity correction

data:  toTest[Target_Pathway_Distance == 5, estimate] and toTest[Target_Pathway_Distance != 5, estimate]
W = 1760, p-value = 0.08164
alternative hypothesis: true location shift is not equal to 0

2b.5

TODO: Fix the rest of this document!!

TODO:: for all documents, look at improvement over a drug matched null

We want to see whether being closer to the drug target in the Reactome network makes you more likely to pass meta-analysis. This means we need to redo the distance between biomarker and target analysis for allRes, instead of just allSig.

drugTargetInfoAll <- fread("~/Code/Github/pachyderm/Annotations/DrugTargetCompilation_updated.csv")


drugTargetInfoAll <- drugTargetInfoAll[BHKLAB.DRUGID %in% allRes$Drug]

drugTargetInfoAll <- drugTargetInfoAll[, .("TARGET" = unique(TARGET_NAME)), BHKLAB.DRUGID]

drugTargetInfoAll <- drugTargetInfoAll[complete.cases(drugTargetInfoAll), ]

drugTargetInfoAll <- drugTargetInfoAll[drugTargetInfoAll$TARGET %in% gene_info$gene_name, ]

drugTargetInfoAll[, TARGET := gene_info$V1[match(TARGET, gene_info$gene_name)]]
distance.list.all <- list()



for (drug in drugTargetInfoAll[, unique(BHKLAB.DRUGID)]) {
    targets <- drugTargetInfoAll[BHKLAB.DRUGID == drug, TARGET]

    markers <- allRes[Drug == drug, Gene]

    tg <- unique(na.omit(match(targets, colnames(reactomeMatrix))))

    mk <- unique(na.omit(match(markers, colnames(reactomeMatrix))))

    distance.list.all[[drug]] <- reactomeDist[tg, mk, drop = FALSE]
}

min.distance.list.all <- lapply(distance.list.all, \(x) {
    apply(x, 2, min)
})

min.distance.list.all.m <- rbindlist(lapply(names(min.distance.list.all), \(nm){return(data.frame(Drug=nm, Gene = names(min.distance.list.all[[nm]]), Distance=min.distance.list.all[[nm]]))}))

min.distance.list.all.m[, `Meta Analysis` := "Not Significant"]
min.distance.list.all.m[allSig, `Meta Analysis` := "Significant", on = c("Drug", "Gene")]
min.distance.list.all.m[, weight := 1 / .N, `Meta Analysis`]
mean(min.distance.list.all.m[`Meta Analysis` == "Not Significant", Distance][is.finite(min.distance.list.all.m[`Meta Analysis` == "Not Significant", Distance])])
[1] 2.201417
mean(min.distance.list.all.m[`Meta Analysis` == "Significant", Distance][is.finite(min.distance.list.all.m[`Meta Analysis` == "Significant", Distance])])
[1] 2.231843
wilcox.test(
    min.distance.list.all.m[`Meta Analysis` == "Not Significant", Distance],
    min.distance.list.all.m[`Meta Analysis` == "Significant", Distance]
)

    Wilcoxon rank sum test with continuity correction

data:  min.distance.list.all.m[`Meta Analysis` == "Not Significant", Distance] and min.distance.list.all.m[`Meta Analysis` == "Significant", Distance]
W = 3186310, p-value = 0.2385
alternative hypothesis: true location shift is not equal to 0
# Checking to confirm the direction of the trend
wilcox.test(
    min.distance.list.all.m[`Meta Analysis` == "Not Significant", Distance],
    min.distance.list.all.m[`Meta Analysis` == "Significant", Distance],
    alternative = "l"
)

    Wilcoxon rank sum test with continuity correction

data:  min.distance.list.all.m[`Meta Analysis` == "Not Significant", Distance] and min.distance.list.all.m[`Meta Analysis` == "Significant", Distance]
W = 3186310, p-value = 0.1193
alternative hypothesis: true location shift is less than 0
mean(min.distance.list.all.m[`Meta Analysis` == "Not Significant", Distance][is.finite(min.distance.list.all.m[`Meta Analysis` == "Not Significant", Distance])])
[1] 2.201417
mean(min.distance.list.all.m[`Meta Analysis` == "Significant", Distance][is.finite(min.distance.list.all.m[`Meta Analysis` == "Significant", Distance])])
[1] 2.231843
ggplot(min.distance.list.all.m, aes(Distance, fill = `Meta Analysis`, weight = weight)) +
    geom_bar(position = "dodge") +
    theme_bw() +
    scale_fill_brewer(palette = "Paired") +
    ylab("Proportion")
Warning: Removed 65 rows containing non-finite values (stat_count).

    theme(legend.position = c(0.75, 0.8))
List of 1
 $ legend.position: num [1:2] 0.75 0.8
 - attr(*, "class")= chr [1:2] "theme" "gg"
 - attr(*, "complete")= logi FALSE
 - attr(*, "validate")= logi TRUE
pdf("figures/reactomeNetworkMinDistanceByMetaAnalysisDodge.pdf", height = 4, width = 4)
ggplot(min.distance.list.all.m, aes(Distance, fill = `Meta Analysis`, weight = weight)) +
    geom_bar(position = "dodge") +
    theme_bw() +
    scale_fill_brewer(palette = "Paired") +
    ylab("Proportion")  +
    theme(legend.position = c(0.75, 0.8))
Warning: Removed 65 rows containing non-finite values (stat_count).
dev.off()
png 
  2 

The mean number of targets per drug is similar between the two groups, so I am not too worried about bias from taking the min.

distance.list.all.m <- rbindlist(lapply(distance.list.all, reshape2::melt), idcol = "Drug")
colnames(distance.list.all.m) <- c("Drug", "Target", "Gene", "Distance")
distance.list.all.m[, `Meta Analysis` := "Not Significant"]
distance.list.all.m[allSig, `Meta Analysis` := "Significant", on = c("Drug", "Gene")]
distance.list.all.m[, length(unique(Target)) / length(unique(Drug)), `Meta Analysis`]

2c

Loading results from CRISPR and RNAi. Here, we are going to calculate whether biomarkers which correlated with a drug target are closer to that specific drug target. For later results, they are independent of particular drug target, so later we will treat correlation with any target equally.

crispr.res <- readRDS("~/Code/tissue_biomarker/depmap/crispr_biomarker_res_allmarkers.rds")
rnai.res <- readRDS("~/Code/tissue_biomarker/depmap/rnai_biomarker_res_allmarkers.rds")


drugTargetInfoAll <- fread("~/Code/Github/pachyderm/Annotations/DrugTargetCompilation_updated.csv")


drugTargetInfoAll <- drugTargetInfoAll[BHKLAB.DRUGID %in% allRes$Drug]

drugTargetInfoAll <- drugTargetInfoAll[, .("TARGET" = unique(TARGET_NAME)), BHKLAB.DRUGID]

drugTargetInfoAll <- drugTargetInfoAll[complete.cases(drugTargetInfoAll), ]

drugTargetInfoAll <- drugTargetInfoAll[drugTargetInfoAll$TARGET %in% gene_info$gene_name, ]

drugTargetInfoAll[, ENSG := gene_info$V1[match(TARGET, gene_info$gene_name)]]
crispr.res.m <- lapply(crispr.res, \(x){

    tbl <- data.table(reshape2::melt(x[,,"significant",drop=FALSE]))
    tbl <- tbl[,-3]
    colnames(tbl) <- c("Gene", "Target", "Significant")
    tbl
})
Loading required package: PharmacoGx
Loading required package: CoreGx
Loading required package: BiocGenerics

Attaching package: 'BiocGenerics'
The following objects are masked from 'package:igraph':

    normalize, path, union
The following objects are masked from 'package:stats':

    IQR, mad, sd, var, xtabs
The following objects are masked from 'package:base':

    anyDuplicated, append, as.data.frame, basename, cbind, colnames,
    dirname, do.call, duplicated, eval, evalq, Filter, Find, get, grep,
    grepl, intersect, is.unsorted, lapply, Map, mapply, match, mget,
    order, paste, pmax, pmax.int, pmin, pmin.int, Position, rank,
    rbind, Reduce, rownames, sapply, setdiff, sort, table, tapply,
    union, unique, unsplit, which.max, which.min
Loading required package: SummarizedExperiment
Loading required package: MatrixGenerics
Loading required package: matrixStats

Attaching package: 'MatrixGenerics'
The following objects are masked from 'package:matrixStats':

    colAlls, colAnyNAs, colAnys, colAvgsPerRowSet, colCollapse,
    colCounts, colCummaxs, colCummins, colCumprods, colCumsums,
    colDiffs, colIQRDiffs, colIQRs, colLogSumExps, colMadDiffs,
    colMads, colMaxs, colMeans2, colMedians, colMins, colOrderStats,
    colProds, colQuantiles, colRanges, colRanks, colSdDiffs, colSds,
    colSums2, colTabulates, colVarDiffs, colVars, colWeightedMads,
    colWeightedMeans, colWeightedMedians, colWeightedSds,
    colWeightedVars, rowAlls, rowAnyNAs, rowAnys, rowAvgsPerColSet,
    rowCollapse, rowCounts, rowCummaxs, rowCummins, rowCumprods,
    rowCumsums, rowDiffs, rowIQRDiffs, rowIQRs, rowLogSumExps,
    rowMadDiffs, rowMads, rowMaxs, rowMeans2, rowMedians, rowMins,
    rowOrderStats, rowProds, rowQuantiles, rowRanges, rowRanks,
    rowSdDiffs, rowSds, rowSums2, rowTabulates, rowVarDiffs, rowVars,
    rowWeightedMads, rowWeightedMeans, rowWeightedMedians,
    rowWeightedSds, rowWeightedVars
Loading required package: GenomicRanges
Loading required package: stats4
Loading required package: S4Vectors

Attaching package: 'S4Vectors'
The following objects are masked from 'package:data.table':

    first, second
The following objects are masked from 'package:Matrix':

    expand, unname
The following objects are masked from 'package:base':

    expand.grid, I, unname
Loading required package: IRanges

Attaching package: 'IRanges'
The following object is masked from 'package:data.table':

    shift
Loading required package: GenomeInfoDb
Loading required package: Biobase
Welcome to Bioconductor

    Vignettes contain introductory material; view with
    'browseVignettes()'. To cite Bioconductor, see
    'citation("Biobase")', and for packages 'citation("pkgname")'.

Attaching package: 'Biobase'
The following object is masked from 'package:MatrixGenerics':

    rowMedians
The following objects are masked from 'package:matrixStats':

    anyMissing, rowMedians

Attaching package: 'PharmacoGx'
The following objects are masked from 'package:CoreGx':

    .parseToRoxygen, amcc, connectivityScore, cosinePerm, gwc, mcc
crispr.res.m <- lapply(names(crispr.res.m), function(nm) {
    xx <- strsplit(nm, split = "_")[[1]]

    tissue <- xx[1]
    drug <- xx[2]
    tbl <- crispr.res.m[[nm]]
    tbl[,Drug := drug]
    tbl[,Tissue := tissue]
    tbl
})

crispr.res.m <- rbindlist(crispr.res.m)

crispr.res.m[, Gene := gsub(pat = "\\.[0-9]+", rep = "", x = Gene)]
crispr.res.m[, Target := trimws(gsub(pat = "\\([0-9]+\\)", rep = "", x = Target))]
crispr.res.m[, TargetENSG := gene_info$V1[match(Target, gene_info$gene_name)]]
crispr.res.m[, Distance := ifelse(Gene %in% colnames(reactomeDist) & TargetENSG %in% colnames(reactomeDist), reactomeDist[TargetENSG, Gene], NA_real_), .(Gene, TargetENSG)]
crispr.res.m <- crispr.res.m[complete.cases(crispr.res.m)]

crispr.res.m[, `CRISPR Sig` := ifelse(Significant == 1, "Associated\nwith CRISPR", "Not Associated")]
# filter to only those that pass meta-analysis
crispr.res.m <- crispr.res.m[allSig, , on = c("Gene", "Tissue", "Drug"), nomatch = 0]

crispr.res.m[, weight := 1 / .N, Significant]
wilcox.test(split(crispr.res.m, by = "CRISPR Sig")[[1]][, Distance], split(crispr.res.m, by = "CRISPR Sig")[[2]][, Distance])

    Wilcoxon rank sum test with continuity correction

data:  split(crispr.res.m, by = "CRISPR Sig")[[1]][, Distance] and split(crispr.res.m, by = "CRISPR Sig")[[2]][, Distance]
W = 1312296, p-value = 0.8252
alternative hypothesis: true location shift is not equal to 0
colPal <- c("#fb9a99", "#e31a1c")

crispr.res.m$Distance <- factor(crispr.res.m$Distance)

ggplot(
    crispr.res.m,
    aes(Distance, weight = weight, fill = `CRISPR Sig`)
) +
    geom_bar(position = "dodge") +
    theme_bw() +
    xlab("Distance to Drug Target") +
    ylab("Proportion") +
    scale_fill_manual(values = colPal) +
    theme(legend.position = c(0.75, 0.8), legend.title = element_blank())

pdf("figures/reactomeNetworkDistanceToTargetCRISPR.pdf", height = 4, width = 4)
ggplot(
    crispr.res.m,
    aes(Distance, weight = weight, fill = `CRISPR Sig`)
) +
    geom_bar(position = "dodge") +
    theme_bw() +
    xlab("Distance to Drug Target") +
    ylab("Proportion") +
    scale_fill_manual(values = colPal) +
    theme(legend.position = c(0.75, 0.8), legend.title = element_blank())
dev.off()
png 
  2 
rnai.res.m <- lapply(rnai.res, \(x){
    tbl <- data.table(reshape2::melt(x[, , "significant", drop = FALSE]))
    tbl <- tbl[, -3]
    colnames(tbl) <- c("Gene", "Target", "Significant")
    tbl
})



rnai.res.m <- lapply(names(rnai.res.m), function(nm) {
    xx <- strsplit(nm, split = "_")[[1]]

    tissue <- xx[1]
    drug <- xx[2]
    tbl <- rnai.res.m[[nm]]
    tbl[, Drug := drug]
    tbl[, Tissue := tissue]
    tbl
})

rnai.res.m <- rbindlist(rnai.res.m)

rnai.res.m[, Gene := gsub(pat = "\\.[0-9]+", rep = "", x = Gene)]
rnai.res.m[, Target := trimws(gsub(pat = "\\([0-9]+\\)", rep = "", x = Target))]
rnai.res.m[, TargetENSG := gene_info$V1[match(Target, gene_info$gene_name)]]
rnai.res.m[, Distance := ifelse(Gene %in% colnames(reactomeDist) & TargetENSG %in% colnames(reactomeDist), reactomeDist[TargetENSG, Gene], NA_real_), .(Gene, TargetENSG)]
rnai.res.m <- rnai.res.m[complete.cases(rnai.res.m)]

rnai.res.m[, `RNAi Sig` := ifelse(Significant == 1, "Associated\nwith RNAi", "Not Associated")]
# filter to only those that pass meta-analysis
rnai.res.m <- rnai.res.m[allSig, , on = c("Gene", "Tissue", "Drug"), nomatch = 0]

rnai.res.m[, weight := 1 / .N, Significant]
wilcox.test(split(rnai.res.m, by="RNAi Sig")[[1]][,Distance], split(rnai.res.m, by="RNAi Sig")[[2]][,Distance])

    Wilcoxon rank sum test with continuity correction

data:  split(rnai.res.m, by = "RNAi Sig")[[1]][, Distance] and split(rnai.res.m, by = "RNAi Sig")[[2]][, Distance]
W = 3353992, p-value = 0.5308
alternative hypothesis: true location shift is not equal to 0
colPal <- c("#b2df8a","#33a02c")

rnai.res.m$Distance <- factor(rnai.res.m$Distance)

ggplot(
    rnai.res.m,
    aes(Distance, weight = weight, fill = `RNAi Sig`)
) +
    geom_bar(position = "dodge") +
    theme_bw() +
    xlab("Distance to Drug Target") +
    ylab("Proportion") +
    scale_fill_manual(values = colPal)+
        theme(legend.position = c(0.75, 0.8), legend.title = element_blank())

pdf("figures/reactomeNetworkDistanceToTargetRNAi.pdf", height = 4, width = 4)
ggplot(
    rnai.res.m,
    aes(Distance, weight = weight, fill = `RNAi Sig`)
) +
    geom_bar(position = "dodge") +
    theme_bw() +
    xlab("Distance to Drug Target") +
    ylab("Proportion") +
    scale_fill_manual(values = colPal) +
    theme(legend.position = c(0.75, 0.8), legend.title = element_blank())
dev.off()
png 
  2 
crispr.cor.with.target <- sapply(crispr.res, function(x) apply(x[, , "significant", drop = F], 1, any, na.rm = T))
Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical
crispr.cor.with.target <- lapply(names(crispr.cor.with.target), function(nm) {
    xx <- strsplit(nm, split = "_")[[1]]

    tissue <- xx[1]
    drug <- xx[2]

    data.frame(
        Tissue = tissue, Drug = drug, Gene = names(crispr.cor.with.target[[nm]]),
        status = crispr.cor.with.target[[nm]]
    )
})


crispr.cor.with.target <- rbindlist(crispr.cor.with.target)



rnai.cor.with.target <- sapply(rnai.res, function(x) apply(x[, , "significant", drop = F], 1, any, na.rm = T))
Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical

Warning in FUN(array(newX[, i], d.call, dn.call), ...): coercing argument of
type 'double' to logical
rnai.cor.with.target <- lapply(names(rnai.cor.with.target), function(nm) {
    xx <- strsplit(nm, split = "_")[[1]]

    tissue <- xx[1]
    drug <- xx[2]

    data.frame(
        Tissue = tissue, Drug = drug, Gene = names(rnai.cor.with.target[[nm]]),
        status = rnai.cor.with.target[[nm]]
    )
})


rnai.cor.with.target <- rbindlist(rnai.cor.with.target)

rnai.cor.with.target[, Gene := gsub(pat = "\\.[0-9]+", rep = "", x = Gene)]
crispr.cor.with.target[, Gene := gsub(pat = "\\.[0-9]+", rep = "", x = Gene)]
rnai.merged <- allRes[rnai.cor.with.target, , on = .(Tissue, Drug, Gene)]


allSig[, RNAi := "Not Associated"]
allSig[, CRISPR := "Not Associated"]
allSig[rnai.cor.with.target[(status)], RNAi := "Associated\nwith RNAi", on = .(Drug, Gene, Tissue)]
allSig[crispr.cor.with.target[(status)], CRISPR := "Associated\nwith CRISPR", on = .(Drug, Gene, Tissue)]
prop.table(table(allSig$RNAi))

Associated\nwith RNAi        Not Associated 
            0.1454587             0.8545413 
prop.table(table(allSig$CRISPR))

Associated\nwith CRISPR          Not Associated 
             0.05670816              0.94329184 

2d

pdf("figures/CRISPR_boxplot_effect_size.pdf", height = 3, width = 3)
ggplot(
    allSig,
    aes(CRISPR, abs(estimate))
) +
    geom_boxplot() +
    theme_bw() +
    xlab("") +
    ylab("Absolute Correlation\nwith Drug Response")
dev.off()
png 
  2 
ggplot(
    allSig,
    aes(CRISPR, abs(estimate))
) +
    geom_boxplot() +
    theme_bw() +
    xlab("") +
    ylab("Absolute Correlation\nwith Drug Response")

ggplot(
    allSig,
    aes(CRISPR, abs(estimate))
) +
    geom_violin(fill = "gray70") +
    geom_boxplot(width = 0.3) +
    theme_bw() +
    ylab("Absolute Correlation\nwith Drug Response") +
    theme(legend.position = c(0.85, 0.85)) + xlab("")

pdf("figures/CRISPR_violin_effect_size.pdf", height = 3, width = 3)
ggplot(
    allSig,
    aes(CRISPR, abs(estimate))
) +
    geom_violin(fill = "gray70") +
    geom_boxplot(width = 0.3) +
    theme_bw() +
    ylab("Absolute Correlation\nwith Drug Response") + xlab("")
dev.off()
png 
  2 
pdf("figures/RNAi_boxplot_effect_size.pdf", height = 3, width = 3)
ggplot(
    allSig,
    aes(RNAi, abs(estimate))
) +
    geom_boxplot() +
    theme_bw() +
    xlab("") +
    ylab("Absolute Correlation\nwith Drug Response")
dev.off()
png 
  2 
ggplot(
    allSig,
    aes(RNAi, abs(estimate))
) +
    geom_boxplot() +
    theme_bw() +
    xlab("") +
    ylab("Absolute Correlation\nwith Drug Response")

ggplot(
    allSig,
    aes(RNAi, abs(estimate))
) +
    geom_violin(fill = "gray70") + geom_boxplot(width=0.3) +
    theme_bw() +
    ylab("Absolute Correlation\nwith Drug Response") + 
    theme(legend.position = c(0.85, 0.85)) + xlab("")

pdf("figures/RNAi_violin_effect_size.pdf", height = 3, width = 3)
ggplot(
    allSig,
    aes(RNAi, abs(estimate))
) +
    geom_violin(fill = "gray70") +
    geom_boxplot(width = 0.3) +
    theme_bw() +
    ylab("Absolute Correlation\nwith Drug Response") + xlab("")
dev.off()
png 
  2 
wilcox.test(split(allSig[, abs(estimate)], allSig$RNAi)[[1]], split(allSig[, abs(estimate)], allSig$RNAi)[[2]])

    Wilcoxon rank sum test with continuity correction

data:  split(allSig[, abs(estimate)], allSig$RNAi)[[1]] and split(allSig[, abs(estimate)], allSig$RNAi)[[2]]
W = 964173, p-value = 1.639e-12
alternative hypothesis: true location shift is not equal to 0
wilcox.test(split(allSig[, abs(estimate)], allSig$CRISPR)[[1]], split(allSig[, abs(estimate)], allSig$CRISPR)[[2]])

    Wilcoxon rank sum test with continuity correction

data:  split(allSig[, abs(estimate)], allSig$CRISPR)[[1]] and split(allSig[, abs(estimate)], allSig$CRISPR)[[2]]
W = 594536, p-value = 1.741e-06
alternative hypothesis: true location shift is not equal to 0

2f

allRes[, RNAi := "Not Associated"]
allRes[, CRISPR := "Not Associated"]
allRes[rnai.cor.with.target[(status)], RNAi := "Associated\nwith RNAi", on = .(Drug, Gene, Tissue)]
allRes[crispr.cor.with.target[(status)], CRISPR := "Associated\nwith CRISPR", on = .(Drug, Gene, Tissue)]
allRes[,`Passes Meta-Analysis` := "No"]
allRes[BF_p_all<=0.05,`Passes Meta-Analysis`:="Yes"]
allRes[, table(`Passes Meta-Analysis`, RNAi)]
                    RNAi
Passes Meta-Analysis Associated\nwith RNAi Not Associated
                 No                    484           2979
                 Yes                   631           3707
allRes[, table(`Passes Meta-Analysis`, CRISPR)]
                    CRISPR
Passes Meta-Analysis Associated\nwith CRISPR Not Associated
                 No                      311           3152
                 Yes                     246           4092
fisher.test(allRes[, table(`Passes Meta-Analysis`, RNAi)][, c(2, 1)])

    Fisher's Exact Test for Count Data

data:  allRes[, table(`Passes Meta-Analysis`, RNAi)][, c(2, 1)]
p-value = 0.4942
alternative hypothesis: true odds ratio is not equal to 1
95 percent confidence interval:
 0.9201632 1.1933453
sample estimates:
odds ratio 
  1.047694 
fisher.test(allRes[, table(`Passes Meta-Analysis`, CRISPR)][, c(2, 1)])

    Fisher's Exact Test for Count Data

data:  allRes[, table(`Passes Meta-Analysis`, CRISPR)][, c(2, 1)]
p-value = 2.184e-08
alternative hypothesis: true odds ratio is not equal to 1
95 percent confidence interval:
 0.5100145 0.7273963
sample estimates:
odds ratio 
 0.6093432 
LS0tCnRpdGxlOiAiRmlndXJlIDIgdjMiCm91dHB1dDogaHRtbF9ub3RlYm9vawotLS0KCgpgYGB7cn0KbGlicmFyeShNYXRyaXgpCmxpYnJhcnkoaWdyYXBoKQpsaWJyYXJ5KGRhdGEudGFibGUpCmxpYnJhcnkoZG9QYXJhbGxlbCkKCnNldC5zZWVkKDQyKQoKYWxsU2lnIDwtIGZyZWFkKCJ+L0NvZGUvdGlzc3VlX2Jpb21hcmtlci9iaW9tYXJrZXJfcmVzL2FsbFNpZ0Jpby5jc3YiKQpnZW5lX2luZm8gPC0gZnJlYWQoIn4vQ29kZS90aXNzdWVfYmlvbWFya2VyL2dlbmVJbmZvLmNzdiIpCgpnZW5lX2luZm9bLCBWMSA6PSBnc3ViKFYxLCBwYXQgPSAiXFwuWzAtOV0rJCIsIHJlcCA9ICIiKV0KCmdlbmVfc3ltYm9sIDwtIGdlbmVfaW5mb1ssIC4oVjEsIGdlbmVfbmFtZSldCgpjb2xuYW1lcyhnZW5lX3N5bWJvbClbMV0gPC0gIkdlbmUiCgpkcnVnVGFyZ2V0SW5mbyA8LSBmcmVhZCgifi9Db2RlL0dpdGh1Yi9wYWNoeWRlcm0vQW5ub3RhdGlvbnMvRHJ1Z1RhcmdldENvbXBpbGF0aW9uX3VwZGF0ZWQuY3N2IikKCgpkcnVnVGFyZ2V0SW5mbyA8LSBkcnVnVGFyZ2V0SW5mb1tCSEtMQUIuRFJVR0lEICVpbiUgYWxsU2lnJERydWddCgpkcnVnVGFyZ2V0SW5mbyA8LSBkcnVnVGFyZ2V0SW5mb1ssIC4oIlRBUkdFVCIgPSB1bmlxdWUoVEFSR0VUX05BTUUpKSwgQkhLTEFCLkRSVUdJRF0KCmRydWdUYXJnZXRJbmZvIDwtIGRydWdUYXJnZXRJbmZvW2NvbXBsZXRlLmNhc2VzKGRydWdUYXJnZXRJbmZvKSwgXQoKZHJ1Z1RhcmdldEluZm8gPC0gZHJ1Z1RhcmdldEluZm9bZHJ1Z1RhcmdldEluZm8kVEFSR0VUICVpbiUgZ2VuZV9pbmZvJGdlbmVfbmFtZSwgXQoKZHJ1Z1RhcmdldEluZm9bLCBUQVJHRVQgOj0gZ2VuZV9pbmZvJFYxW21hdGNoKFRBUkdFVCwgZ2VuZV9pbmZvJGdlbmVfbmFtZSldXQoKYGBgCgojIDJhCgpMb2FkaW5nIGluIFJlYWN0b21lIFBhdGh3YXkgYW5kIGNyZWF0aW5nIGEgbmV0d29yay4KIApgYGB7cn0KCnJlYWN0b21lQm90dG9tIDwtIGZyZWFkKCJ+L0NvZGUvdGlzc3VlX2Jpb21hcmtlci9wYXRod2F5cy9SZWFjdG9tZUJvdHRvbS50eHQiKQpyZWFjdG9tZUJvdHRvbSA8LSByZWFjdG9tZUJvdHRvbVtWNiA9PSAiSG9tbyBzYXBpZW5zIl0KcmVhY3RvbWVCb3R0b20gPC0gcmVhY3RvbWVCb3R0b21bZ3JlcGwoeCA9IFYxLCBwYXQgPSAiRU5TRyIpXQoKCnJlYWN0b21lR2VuZXMgPC0gdW5pcXVlKHJlYWN0b21lQm90dG9tW1sxXV0pCgoKcmVhY3RvbWVNYXRyaXggPC0gbWF0cml4KDAsIG5yb3cgPSBsZW5ndGgocmVhY3RvbWVHZW5lcyksIG5jb2wgPSBsZW5ndGgocmVhY3RvbWVHZW5lcykpCgpjb2xuYW1lcyhyZWFjdG9tZU1hdHJpeCkgPC0gcm93bmFtZXMocmVhY3RvbWVNYXRyaXgpIDwtIHJlYWN0b21lR2VuZXMKCgpyZWFjdG9tZUJvdHRvbVBhdGh3YXlzIDwtIHNwbGl0KHJlYWN0b21lQm90dG9tLCBieSA9ICJWNCIpCgoKZm9yIChwYXRod2F5IGluIHJlYWN0b21lQm90dG9tUGF0aHdheXMpIHsKICAgIHJlYWN0b21lTWF0cml4W3BhdGh3YXlbWzFdXSwgcGF0aHdheVtbMV1dXSA8LSAxCn0KCnJlYWN0b21lR3JhcGggPC0gZ3JhcGhfZnJvbV9hZGphY2VuY3lfbWF0cml4KHJlYWN0b21lTWF0cml4LCB3ZWlnaHRlZCA9ICIxIiwgbW9kZSA9ICJ1bmRpcmVjdGVkIikKCgpgYGAKCkkgdGhpbmsgMyBjb21wYXJpc29ucyBhcmUgaW4gb3JkZXI6IFRhcmdldCB0byByYW5kb20gZ2VuZSwgUmFuZG9tIEdlbmUgdG8gQmlvbWFya2VyLCBhbmQgUmFuZG9tIEdlbmUgdG8gUmFuZG9tCgpGaXJzdCwgbGV0cyBpZGVudGlmeSB0aGUgZGlzdGFuY2VzIGJldHdlZW4gbWFya2VycyBhbmQgdGFyZ2V0cy4KCmBgYHtyfQpyZWFjdG9tZURpc3QgPC0gZGlzdGFuY2VzKHJlYWN0b21lR3JhcGgpCmBgYAoKYGBge3J9CgpkaXN0YW5jZS5saXN0IDwtIGxpc3QoKQpyYW5kb21fdG9fdGFyZ2V0cy5saXN0IDwtIGxpc3QoKQpyYW5kb21fdG9fcmFuZG9tLmxpc3QgPC0gbGlzdCgpCgpmb3IgKGRydWcgaW4gZHJ1Z1RhcmdldEluZm9bLCB1bmlxdWUoQkhLTEFCLkRSVUdJRCldKSB7CiAgICB0YXJnZXRzIDwtIGRydWdUYXJnZXRJbmZvW0JIS0xBQi5EUlVHSUQgPT0gZHJ1ZywgVEFSR0VUXQoKICAgIG1hcmtlcnMgPC0gYWxsU2lnW0RydWcgPT0gZHJ1ZywgR2VuZV0KCiAgICB0ZyA8LSB1bmlxdWUobmEub21pdChtYXRjaCh0YXJnZXRzLCBjb2xuYW1lcyhyZWFjdG9tZU1hdHJpeCkpKSkKCiAgICBtayA8LSB1bmlxdWUobmEub21pdChtYXRjaChtYXJrZXJzLCBjb2xuYW1lcyhyZWFjdG9tZU1hdHJpeCkpKSkKCgoKICAgIG51bV90YXJnZXRzIDwtIGxlbmd0aCh0ZykKICAgIG51bV9tYXJrZXJzIDwtIGxlbmd0aChtaykKCiAgICBta19yYW5kb20gPC0gc2FtcGxlKGxlbmd0aCh2ZXJ0ZXguYXR0cmlidXRlcyhyZWFjdG9tZUdyYXBoKSRuYW1lKSwgbnVtX21hcmtlcnMpCiAgICB0Z19yYW5kb20gPC0gc2FtcGxlKGxlbmd0aCh2ZXJ0ZXguYXR0cmlidXRlcyhyZWFjdG9tZUdyYXBoKSRuYW1lKSwgbnVtX3RhcmdldHMpCgoKCiAgICBpZighbGVuZ3RoKHRnKXx8IWxlbmd0aChtaykpIG5leHQKICAgIGRpc3RhbmNlLmxpc3RbW2RydWddXSA8LSBkaXN0YW5jZXMocmVhY3RvbWVHcmFwaCwgdGcsIG1rKQogICAgcmFuZG9tX3RvX3RhcmdldHMubGlzdFtbZHJ1Z11dIDwtIGRpc3RhbmNlcyhyZWFjdG9tZUdyYXBoLCB0ZywgbWtfcmFuZG9tKQogICAgcmFuZG9tX3RvX3JhbmRvbS5saXN0W1tkcnVnXV0gPC0gZGlzdGFuY2VzKHJlYWN0b21lR3JhcGgsIHRnX3JhbmRvbSwgbWtfcmFuZG9tKQp9CmBgYAoKCgpOb3cgd2UgdGFrZSB0aGUgbWluaW11bSBkaXN0YW5jZSBmcm9tIGVhY2ggbWFya2VyIChyZWFsIG9yIHJhbmRvbSkgdG8gZWFjaCB0YXJnZXQgKHJlYWwgb3IgcmFuZG9tKS4KCmBgYHtyfQoKZGlzdGFuY2UubGlzdC5taW4gPC0gbGFwcGx5KGRpc3RhbmNlLmxpc3QsIFwoeCkgcmV0dXJuKGFwcGx5KHgsIDIsIG1pbikpKQpyYW5kb21fdG9fcmFuZG9tLmxpc3QubWluIDwtIGxhcHBseShyYW5kb21fdG9fcmFuZG9tLmxpc3QsIFwoeCkgcmV0dXJuKGFwcGx5KHgsIDIsIG1pbikpKQpyYW5kb21fdG9fdGFyZ2V0cy5saXN0Lm1pbiA8LSBsYXBwbHkocmFuZG9tX3RvX3RhcmdldHMubGlzdCwgXCh4KSByZXR1cm4oYXBwbHkoeCwgMiwgbWluKSkpCgpkaXN0YW5jZS5saXN0Lm0gPC0gcmJpbmRsaXN0KGxhcHBseShuYW1lcyhkaXN0YW5jZS5saXN0Lm1pbiksIFwobm0pewogICAgcmV0dXJuKGRhdGEuZnJhbWUoRHJ1ZyA9IG5tLCBHZW5lID0gbmFtZXMoZGlzdGFuY2UubGlzdC5taW5bW25tXV0pLCBEaXN0YW5jZSA9IGRpc3RhbmNlLmxpc3QubWluW1tubV1dKSkKfSkpCgoKcmFuZG9tX3RvX3JhbmRvbS5saXN0Lm0gPC0gcmJpbmRsaXN0KGxhcHBseShuYW1lcyhyYW5kb21fdG9fcmFuZG9tLmxpc3QubWluKSwgXChubSl7CiAgICByZXR1cm4oZGF0YS5mcmFtZShEcnVnID0gbm0sIEdlbmUgPSBuYW1lcyhyYW5kb21fdG9fcmFuZG9tLmxpc3QubWluW1tubV1dKSwgRGlzdGFuY2UgPSByYW5kb21fdG9fcmFuZG9tLmxpc3QubWluW1tubV1dKSkKfSkpCgpyYW5kb21fdG9fdGFyZ2V0cy5saXN0Lm0gPC0gcmJpbmRsaXN0KGxhcHBseShuYW1lcyhyYW5kb21fdG9fdGFyZ2V0cy5saXN0Lm1pbiksIFwobm0pewogICAgcmV0dXJuKGRhdGEuZnJhbWUoRHJ1ZyA9IG5tLCBHZW5lID0gbmFtZXMocmFuZG9tX3RvX3RhcmdldHMubGlzdC5taW5bW25tXV0pLCBEaXN0YW5jZSA9IHJhbmRvbV90b190YXJnZXRzLmxpc3QubWluW1tubV1dKSkKfSkpCgoKYGBgCgoKTGV0cyBQbG90LiAKCmBgYHtyfQoKCmRpc3RhbmNlLmxpc3QubVssQ2F0IDo9ICJCaW9tYXJrZXIgdG8gVGFyZ2V0Il0KcmFuZG9tX3RvX3JhbmRvbS5saXN0Lm1bLCBDYXQgOj0gIlJhbmRvbSB0byBSYW5kb20iXQpyYW5kb21fdG9fdGFyZ2V0cy5saXN0Lm1bLCBDYXQgOj0gIlJhbmRvbSB0byBUYXJnZXQiXQoKdG9QbG90IDwtIHJiaW5kbGlzdChsaXN0KGRpc3RhbmNlLmxpc3QubSwgcmFuZG9tX3RvX3JhbmRvbS5saXN0Lm0sIHJhbmRvbV90b190YXJnZXRzLmxpc3QubSkpCnRvUGxvdFssIHdlaWdodCA6PSAxIC8gLk4sIENhdF0KCnRvUGxvdCREaXN0YW5jZSA8LSBmYWN0b3IodG9QbG90JERpc3RhbmNlKQoKbGlicmFyeShnZ3Bsb3QyKQoKZ2dwbG90KHRvUGxvdCwgYWVzKHggPSBEaXN0YW5jZSwgd2VpZ2h0ID0gd2VpZ2h0KSkgKwogICAgZ2VvbV9iYXIoKSArCiAgICBmYWNldF9ncmlkKHJvd3MgPSB2YXJzKENhdCkpICsKICAgIHRoZW1lX2J3KCkgKwogICAgdGhlbWUobGVnZW5kLnBvc2l0aW9uID0gIk5vbmUiKQoKCnRvUGxvdFssIHdlaWdodCA6PSAxIC8gLk4sIENhdF0KCgpwZGYoImZpZ3VyZXMvcmVhY3RvbWVOZXR3b3JrTWluRGlzdGFuY2VEaXN0LnBkZiIsIGhlaWdodCA9IDQsIHdpZHRoID0gMykKZ2dwbG90KHRvUGxvdCwgYWVzKHggPSBEaXN0YW5jZSwgd2VpZ2h0ID0gd2VpZ2h0KSkgKwogICAgZ2VvbV9iYXIoKSArCiAgICBmYWNldF9ncmlkKHJvd3MgPSB2YXJzKENhdCkpICsKICAgIHRoZW1lX2J3KCkgKwogICAgdGhlbWUobGVnZW5kLnBvc2l0aW9uID0gIk5vbmUiKQpkZXYub2ZmKCkKCiMgZ2dwbG90KHRvUGxvdCwgYWVzKHggPSBEaXN0YW5jZSwgZmlsbCA9IENhdCwgd2VpZ2h0ID0gd2VpZ2h0KSkgKwojICAgICBnZW9tX2JhcigpICsKIyAgICAgZmFjZXRfZ3JpZChyb3dzID0gdmFycyhDYXQpKSArCiMgICAgIHRoZW1lX2J3KCkKCiMgZ2dwbG90KHRvUGxvdCwgYWVzKHggPSBEaXN0YW5jZSwgZmlsbCA9IENhdCwgd2VpZ2h0ID0gd2VpZ2h0KSkgKwojICAgICBnZW9tX2Jhcihwb3NpdGlvbj1wb3NpdGlvbl9pZGVudGl0eSgpLCBhbHBoYT0wLjYpICsKIyAgICAgdGhlbWVfYncoKQoKdG9QbG90MiA8LSB0b1Bsb3RbLCAuKFByb3BvcnRpb24gPSBzdW0od2VpZ2h0KSksIC4oQ2F0LCBEaXN0YW5jZSldW29yZGVyKFByb3BvcnRpb24sIGRlY3JlYXNpbmcgPSBUUlVFKV0KCmdncGxvdCh0b1Bsb3QyLCBhZXMoeCA9IERpc3RhbmNlLCB5ID0gUHJvcG9ydGlvbiwgZmlsbCA9IENhdCkpICsKICAgIGdlb21fY29sKHBvc2l0aW9uID0gcG9zaXRpb25faWRlbnRpdHkoKSwgYWxwaGEgPSAwLjYpICsKICAgIHRoZW1lX2J3KCkgKwogICAgdGhlbWUobGVnZW5kLnBvc2l0aW9uID0gYygwLjc1LCAwLjgpKQoKcGRmKCJmaWd1cmVzL3JlYWN0b21lTmV0d29ya01pbkRpc3RhbmNlRGlzdE92ZXJsYXBwaW5nLnBkZiIsIGhlaWdodCA9IDQsIHdpZHRoID0gNCkKZ2dwbG90KHRvUGxvdDIsIGFlcyh4ID0gRGlzdGFuY2UsIHkgPSBQcm9wb3J0aW9uLCBmaWxsID0gQ2F0KSkgKwogICAgZ2VvbV9jb2wocG9zaXRpb24gPSBwb3NpdGlvbl9pZGVudGl0eSgpLCBhbHBoYSA9IDAuNikgKwogICAgdGhlbWVfYncoKSArCiAgICB0aGVtZShsZWdlbmQucG9zaXRpb24gPSBjKDAuNzUsIDAuOCkpCmRldi5vZmYoKQoKCnRvUGxvdCRDYXQgPC0gZmFjdG9yKHRvUGxvdCRDYXQsIGxldmVscyA9IGMoIkJpb21hcmtlciB0byBUYXJnZXQiLCAiUmFuZG9tIHRvIFRhcmdldCIsICJSYW5kb20gdG8gUmFuZG9tIikpCgpnZ3Bsb3QodG9QbG90LCBhZXMoeCA9IERpc3RhbmNlLCB3ZWlnaHQgPSB3ZWlnaHQsIGZpbGwgPSBDYXQpKSArCiAgICBnZW9tX2Jhcihwb3NpdGlvbiA9ICJkb2RnZSIpICsKICAgIHlsYWIoIlByb3BvcnRpb24iKSArCiAgICB0aGVtZV9idygpICsKICAgIHRoZW1lKGxlZ2VuZC5wb3NpdGlvbiA9IGMoMC43NSwgMC44KSwgbGVnZW5kLnRpdGxlID0gZWxlbWVudF9ibGFuaygpKSArIHNjYWxlX2ZpbGxfYnJld2VyKHBhbGV0dGUgPSAiU2V0MiIpCgoKcGRmKCJmaWd1cmVzL3JlYWN0b21lTmV0d29ya01pbkRpc3RhbmNlRGlzdERvZGdlLnBkZiIsIGhlaWdodCA9IDQsIHdpZHRoID0gNCkKZ2dwbG90KHRvUGxvdCwgYWVzKHggPSBEaXN0YW5jZSwgd2VpZ2h0ID0gd2VpZ2h0LCBmaWxsID0gQ2F0KSkgKwogICAgZ2VvbV9iYXIocG9zaXRpb24gPSAiZG9kZ2UiKSArCiAgICB5bGFiKCJQcm9wb3J0aW9uIikgKwogICAgdGhlbWVfYncoKSArCiAgICB0aGVtZShsZWdlbmQucG9zaXRpb24gPSBjKDAuNzUsIDAuOCksIGxlZ2VuZC50aXRsZSA9IGVsZW1lbnRfYmxhbmsoKSkgKyBzY2FsZV9maWxsX2JyZXdlcihwYWxldHRlID0gIlNldDIiKQpkZXYub2ZmKCkKCmBgYAoKTGV0cyBwcmludCBvdXQgdGhlIHN0YXRpc3RpY3MgYXMgd2VsbDoKCgpgYGB7cn0KbWVhbihyZWFjdG9tZURpc3RbaXMuZmluaXRlKHJlYWN0b21lRGlzdCldKQoKdG9QbG90JERpc3RhbmNlIDwtIGFzLm51bWVyaWMoYXMuY2hhcmFjdGVyKHRvUGxvdCREaXN0YW5jZSkpCgpteS5zcGxpdCA8LSBzcGxpdCh0b1Bsb3QkRGlzdGFuY2UsIGYgPSB0b1Bsb3QkQ2F0KQoKd2lsY294LnRlc3QobXkuc3BsaXRbWyJCaW9tYXJrZXIgdG8gVGFyZ2V0Il1dLAogICAgICAgICAgICBteS5zcGxpdFtbIlJhbmRvbSB0byBUYXJnZXQiXV0pCgoKd2lsY294LnRlc3QoCiAgICBteS5zcGxpdFtbIlJhbmRvbSB0byBUYXJnZXQiXV0sCiAgICBteS5zcGxpdFtbIlJhbmRvbSB0byBSYW5kb20iXV0KKQoKd2lsY294LnRlc3QoCiAgICBteS5zcGxpdFtbIkJpb21hcmtlciB0byBUYXJnZXQiXV0sCiAgICBteS5zcGxpdFtbIlJhbmRvbSB0byBSYW5kb20iXV0KKQoKYGBgCgojIDJiCgoKYGBge3J9CgphbGxSZXMgPC0gZnJlYWQoIn4vQ29kZS90aXNzdWVfYmlvbWFya2VyL3JuYVJlc3VsdHMvYmlvbWFya2VyX3Jlcy9tZXRhX3Jlc19waGFybWFjb2RiLmNzdiIpCmFsbFNpZyA8LSBhbGxSZXNbQkZfcF9hbGwgPCAwLjA1XQphbGxTaWdbLCBJc19UYXJnZXQgOj0gIk5vIl0KCgoKYWxsU2lnWyFEcnVnICVpbiUgZHJ1Z1RhcmdldEluZm8kQkhLTEFCLkRSVUdJRCwgSXNfVGFyZ2V0IDo9ICJObyBUYXJnZXQgSW5mbyJdCgphbGxTaWdbLCBUYXJnZXRfUGF0aHdheV9EaXN0YW5jZSA6PSBpZmVsc2UoR2VuZSAlaW4lIGNvbG5hbWVzKGRpc3RhbmNlLmxpc3RbW0RydWddXSksIG1pbihkaXN0YW5jZS5saXN0W1tEcnVnXV1bLCBHZW5lXSksIE5BX3JlYWxfKSwgLihEcnVnLCBHZW5lKV0KCmFsbFNpZ1tkcnVnVGFyZ2V0SW5mbywgSXNfVGFyZ2V0IDo9ICJZZXMiLCBvbiA9IGMoIkRydWciID0gIkJIS0xBQi5EUlVHSUQiLCBHZW5lID0gIlRBUkdFVCIpXQoKcGRmKCJmaWd1cmVzL2Fic19lc3RpbWF0ZV92c19kaXN0YW5jZV90b190YXJnZXQucGRmIiwgaGVpZ2h0ID0gMywgd2lkdGggPSA0KQpnZ3Bsb3QoYWxsU2lnLCAKCWFlcyhmYWN0b3IoVGFyZ2V0X1BhdGh3YXlfRGlzdGFuY2UsIGV4Y2x1ZGU9YyhOQV9yZWFsXyxJbmYpKSwgeT1hYnMoZXN0aW1hdGUpKSkrZ2VvbV9ib3hwbG90KCkgKyAKdGhlbWVfYncoKSsgIHhsYWIoIkRpc3RhbmNlIHRvIERydWcgVGFyZ2V0IikgKyB5bGFiKCJBYnNvbHV0ZSBDb3JyZWxhdGlvblxud2l0aCBEcnVnIFJlc3BvbnNlIikKZGV2Lm9mZigpCgp0b1Rlc3QgPC0gY29weShhbGxTaWcpCgp0b1Rlc3QkVGFyZ2V0X1BhdGh3YXlfRGlzdGFuY2UgPC0gZmFjdG9yKHRvVGVzdCRUYXJnZXRfUGF0aHdheV9EaXN0YW5jZSwgZXhjbHVkZSA9IGMoTkFfcmVhbF8sIEluZikpCnRvVGVzdCRlc3RpbWF0ZSA8LSBhYnModG9UZXN0JGVzdGltYXRlKQoKa3J1c2thbC50ZXN0KGVzdGltYXRlIH4gVGFyZ2V0X1BhdGh3YXlfRGlzdGFuY2UsIHRvVGVzdCkKCndpbGNveC50ZXN0KHRvVGVzdFtUYXJnZXRfUGF0aHdheV9EaXN0YW5jZSA9PSAwLGVzdGltYXRlXSwgdG9UZXN0W1RhcmdldF9QYXRod2F5X0Rpc3RhbmNlIT0wLCBlc3RpbWF0ZV0pCndpbGNveC50ZXN0KHRvVGVzdFtUYXJnZXRfUGF0aHdheV9EaXN0YW5jZSA9PSA1LCBlc3RpbWF0ZV0sIHRvVGVzdFtUYXJnZXRfUGF0aHdheV9EaXN0YW5jZSAhPSA1LCBlc3RpbWF0ZV0pCgoKYGBgCgojIDJiLjUKCiMjIFRPRE86IEZpeCB0aGUgcmVzdCBvZiB0aGlzIGRvY3VtZW50ISEKIyMgVE9ETzo6IGZvciBhbGwgZG9jdW1lbnRzLCBsb29rIGF0IGltcHJvdmVtZW50IG92ZXIgYSBkcnVnIG1hdGNoZWQgbnVsbAoKV2Ugd2FudCB0byBzZWUgd2hldGhlciBiZWluZyBjbG9zZXIgdG8gdGhlIGRydWcgdGFyZ2V0IGluIHRoZSBSZWFjdG9tZSBuZXR3b3JrIG1ha2VzIHlvdSBtb3JlIGxpa2VseSB0byBwYXNzIG1ldGEtYW5hbHlzaXMuIFRoaXMgbWVhbnMgd2UgbmVlZCB0byByZWRvIHRoZSBkaXN0YW5jZSBiZXR3ZWVuIApiaW9tYXJrZXIgYW5kIHRhcmdldCBhbmFseXNpcyBmb3IgYWxsUmVzLCBpbnN0ZWFkIG9mIGp1c3QgYWxsU2lnLiAgCgpgYGB7cn0KCgpkcnVnVGFyZ2V0SW5mb0FsbCA8LSBmcmVhZCgifi9Db2RlL0dpdGh1Yi9wYWNoeWRlcm0vQW5ub3RhdGlvbnMvRHJ1Z1RhcmdldENvbXBpbGF0aW9uX3VwZGF0ZWQuY3N2IikKCgpkcnVnVGFyZ2V0SW5mb0FsbCA8LSBkcnVnVGFyZ2V0SW5mb0FsbFtCSEtMQUIuRFJVR0lEICVpbiUgYWxsUmVzJERydWddCgpkcnVnVGFyZ2V0SW5mb0FsbCA8LSBkcnVnVGFyZ2V0SW5mb0FsbFssIC4oIlRBUkdFVCIgPSB1bmlxdWUoVEFSR0VUX05BTUUpKSwgQkhLTEFCLkRSVUdJRF0KCmRydWdUYXJnZXRJbmZvQWxsIDwtIGRydWdUYXJnZXRJbmZvQWxsW2NvbXBsZXRlLmNhc2VzKGRydWdUYXJnZXRJbmZvQWxsKSwgXQoKZHJ1Z1RhcmdldEluZm9BbGwgPC0gZHJ1Z1RhcmdldEluZm9BbGxbZHJ1Z1RhcmdldEluZm9BbGwkVEFSR0VUICVpbiUgZ2VuZV9pbmZvJGdlbmVfbmFtZSwgXQoKZHJ1Z1RhcmdldEluZm9BbGxbLCBUQVJHRVQgOj0gZ2VuZV9pbmZvJFYxW21hdGNoKFRBUkdFVCwgZ2VuZV9pbmZvJGdlbmVfbmFtZSldXQoKZGlzdGFuY2UubGlzdC5hbGwgPC0gbGlzdCgpCgoKCmZvciAoZHJ1ZyBpbiBkcnVnVGFyZ2V0SW5mb0FsbFssIHVuaXF1ZShCSEtMQUIuRFJVR0lEKV0pIHsKICAgIHRhcmdldHMgPC0gZHJ1Z1RhcmdldEluZm9BbGxbQkhLTEFCLkRSVUdJRCA9PSBkcnVnLCBUQVJHRVRdCgogICAgbWFya2VycyA8LSBhbGxSZXNbRHJ1ZyA9PSBkcnVnLCBHZW5lXQoKICAgIHRnIDwtIHVuaXF1ZShuYS5vbWl0KG1hdGNoKHRhcmdldHMsIGNvbG5hbWVzKHJlYWN0b21lTWF0cml4KSkpKQoKICAgIG1rIDwtIHVuaXF1ZShuYS5vbWl0KG1hdGNoKG1hcmtlcnMsIGNvbG5hbWVzKHJlYWN0b21lTWF0cml4KSkpKQoKCiAgICBkaXN0YW5jZS5saXN0LmFsbFtbZHJ1Z11dIDwtIHJlYWN0b21lRGlzdFt0ZywgbWssIGRyb3AgPSBGQUxTRV0KfQoKbWluLmRpc3RhbmNlLmxpc3QuYWxsIDwtIGxhcHBseShkaXN0YW5jZS5saXN0LmFsbCwgXCh4KSB7CiAgICBhcHBseSh4LCAyLCBtaW4pCn0pCgptaW4uZGlzdGFuY2UubGlzdC5hbGwubSA8LSByYmluZGxpc3QobGFwcGx5KG5hbWVzKG1pbi5kaXN0YW5jZS5saXN0LmFsbCksIFwobm0pe3JldHVybihkYXRhLmZyYW1lKERydWc9bm0sIEdlbmUgPSBuYW1lcyhtaW4uZGlzdGFuY2UubGlzdC5hbGxbW25tXV0pLCBEaXN0YW5jZT1taW4uZGlzdGFuY2UubGlzdC5hbGxbW25tXV0pKX0pKQoKbWluLmRpc3RhbmNlLmxpc3QuYWxsLm1bLCBgTWV0YSBBbmFseXNpc2AgOj0gIk5vdCBTaWduaWZpY2FudCJdCgptaW4uZGlzdGFuY2UubGlzdC5hbGwubVthbGxTaWcsIGBNZXRhIEFuYWx5c2lzYCA6PSAiU2lnbmlmaWNhbnQiLCBvbiA9IGMoIkRydWciLCAiR2VuZSIpXQoKbWluLmRpc3RhbmNlLmxpc3QuYWxsLm1bLCB3ZWlnaHQgOj0gMSAvIC5OLCBgTWV0YSBBbmFseXNpc2BdCgoKbWVhbihtaW4uZGlzdGFuY2UubGlzdC5hbGwubVtgTWV0YSBBbmFseXNpc2AgPT0gIk5vdCBTaWduaWZpY2FudCIsIERpc3RhbmNlXVtpcy5maW5pdGUobWluLmRpc3RhbmNlLmxpc3QuYWxsLm1bYE1ldGEgQW5hbHlzaXNgID09ICJOb3QgU2lnbmlmaWNhbnQiLCBEaXN0YW5jZV0pXSkKbWVhbihtaW4uZGlzdGFuY2UubGlzdC5hbGwubVtgTWV0YSBBbmFseXNpc2AgPT0gIlNpZ25pZmljYW50IiwgRGlzdGFuY2VdW2lzLmZpbml0ZShtaW4uZGlzdGFuY2UubGlzdC5hbGwubVtgTWV0YSBBbmFseXNpc2AgPT0gIlNpZ25pZmljYW50IiwgRGlzdGFuY2VdKV0pCgoKCndpbGNveC50ZXN0KAogICAgbWluLmRpc3RhbmNlLmxpc3QuYWxsLm1bYE1ldGEgQW5hbHlzaXNgID09ICJOb3QgU2lnbmlmaWNhbnQiLCBEaXN0YW5jZV0sCiAgICBtaW4uZGlzdGFuY2UubGlzdC5hbGwubVtgTWV0YSBBbmFseXNpc2AgPT0gIlNpZ25pZmljYW50IiwgRGlzdGFuY2VdCikKCiMgQ2hlY2tpbmcgdG8gY29uZmlybSB0aGUgZGlyZWN0aW9uIG9mIHRoZSB0cmVuZAp3aWxjb3gudGVzdCgKICAgIG1pbi5kaXN0YW5jZS5saXN0LmFsbC5tW2BNZXRhIEFuYWx5c2lzYCA9PSAiTm90IFNpZ25pZmljYW50IiwgRGlzdGFuY2VdLAogICAgbWluLmRpc3RhbmNlLmxpc3QuYWxsLm1bYE1ldGEgQW5hbHlzaXNgID09ICJTaWduaWZpY2FudCIsIERpc3RhbmNlXSwKICAgIGFsdGVybmF0aXZlID0gImwiCikKCgptZWFuKG1pbi5kaXN0YW5jZS5saXN0LmFsbC5tW2BNZXRhIEFuYWx5c2lzYCA9PSAiTm90IFNpZ25pZmljYW50IiwgRGlzdGFuY2VdW2lzLmZpbml0ZShtaW4uZGlzdGFuY2UubGlzdC5hbGwubVtgTWV0YSBBbmFseXNpc2AgPT0gIk5vdCBTaWduaWZpY2FudCIsIERpc3RhbmNlXSldKQptZWFuKG1pbi5kaXN0YW5jZS5saXN0LmFsbC5tW2BNZXRhIEFuYWx5c2lzYCA9PSAiU2lnbmlmaWNhbnQiLCBEaXN0YW5jZV1baXMuZmluaXRlKG1pbi5kaXN0YW5jZS5saXN0LmFsbC5tW2BNZXRhIEFuYWx5c2lzYCA9PSAiU2lnbmlmaWNhbnQiLCBEaXN0YW5jZV0pXSkKCgpnZ3Bsb3QobWluLmRpc3RhbmNlLmxpc3QuYWxsLm0sIGFlcyhEaXN0YW5jZSwgZmlsbCA9IGBNZXRhIEFuYWx5c2lzYCwgd2VpZ2h0ID0gd2VpZ2h0KSkgKwogICAgZ2VvbV9iYXIocG9zaXRpb24gPSAiZG9kZ2UiKSArCiAgICB0aGVtZV9idygpICsKICAgIHNjYWxlX2ZpbGxfYnJld2VyKHBhbGV0dGUgPSAiUGFpcmVkIikgKwogICAgeWxhYigiUHJvcG9ydGlvbiIpCiAgICB0aGVtZShsZWdlbmQucG9zaXRpb24gPSBjKDAuNzUsIDAuOCkpCgoKcGRmKCJmaWd1cmVzL3JlYWN0b21lTmV0d29ya01pbkRpc3RhbmNlQnlNZXRhQW5hbHlzaXNEb2RnZS5wZGYiLCBoZWlnaHQgPSA0LCB3aWR0aCA9IDQpCmdncGxvdChtaW4uZGlzdGFuY2UubGlzdC5hbGwubSwgYWVzKERpc3RhbmNlLCBmaWxsID0gYE1ldGEgQW5hbHlzaXNgLCB3ZWlnaHQgPSB3ZWlnaHQpKSArCiAgICBnZW9tX2Jhcihwb3NpdGlvbiA9ICJkb2RnZSIpICsKICAgIHRoZW1lX2J3KCkgKwogICAgc2NhbGVfZmlsbF9icmV3ZXIocGFsZXR0ZSA9ICJQYWlyZWQiKSArCiAgICB5bGFiKCJQcm9wb3J0aW9uIikgICsKICAgIHRoZW1lKGxlZ2VuZC5wb3NpdGlvbiA9IGMoMC43NSwgMC44KSkKZGV2Lm9mZigpCgpgYGAKClRoZSBtZWFuIG51bWJlciBvZiB0YXJnZXRzIHBlciBkcnVnIGlzIHNpbWlsYXIgYmV0d2VlbiB0aGUgdHdvIGdyb3Vwcywgc28gSSBhbSBub3QgdG9vIHdvcnJpZWQgYWJvdXQgYmlhcyBmcm9tIHRha2luZyB0aGUgbWluLgoKYGBge3J9CgpkaXN0YW5jZS5saXN0LmFsbC5tIDwtIHJiaW5kbGlzdChsYXBwbHkoZGlzdGFuY2UubGlzdC5hbGwsIHJlc2hhcGUyOjptZWx0KSwgaWRjb2wgPSAiRHJ1ZyIpCmNvbG5hbWVzKGRpc3RhbmNlLmxpc3QuYWxsLm0pIDwtIGMoIkRydWciLCAiVGFyZ2V0IiwgIkdlbmUiLCAiRGlzdGFuY2UiKQpkaXN0YW5jZS5saXN0LmFsbC5tWywgYE1ldGEgQW5hbHlzaXNgIDo9ICJOb3QgU2lnbmlmaWNhbnQiXQoKZGlzdGFuY2UubGlzdC5hbGwubVthbGxTaWcsIGBNZXRhIEFuYWx5c2lzYCA6PSAiU2lnbmlmaWNhbnQiLCBvbiA9IGMoIkRydWciLCAiR2VuZSIpXQoKZGlzdGFuY2UubGlzdC5hbGwubVssIGxlbmd0aCh1bmlxdWUoVGFyZ2V0KSkgLyBsZW5ndGgodW5pcXVlKERydWcpKSwgYE1ldGEgQW5hbHlzaXNgXQoKYGBgCgoKIyAyYwoKTG9hZGluZyByZXN1bHRzIGZyb20gQ1JJU1BSIGFuZCBSTkFpLiBIZXJlLCB3ZSBhcmUgZ29pbmcgdG8gY2FsY3VsYXRlIHdoZXRoZXIgYmlvbWFya2VycyB3aGljaCBjb3JyZWxhdGVkIHdpdGggYSBkcnVnIHRhcmdldCBhcmUgY2xvc2VyIHRvIHRoYXQgc3BlY2lmaWMgCmRydWcgdGFyZ2V0LiBGb3IgbGF0ZXIgcmVzdWx0cywgdGhleSBhcmUgaW5kZXBlbmRlbnQgb2YgcGFydGljdWxhciBkcnVnIHRhcmdldCwgc28gbGF0ZXIgd2Ugd2lsbCB0cmVhdCBjb3JyZWxhdGlvbiB3aXRoIGFueSB0YXJnZXQgZXF1YWxseS4gCgoKCmBgYHtyfQoKCmNyaXNwci5yZXMgPC0gcmVhZFJEUygifi9Db2RlL3Rpc3N1ZV9iaW9tYXJrZXIvZGVwbWFwL2NyaXNwcl9iaW9tYXJrZXJfcmVzX2FsbG1hcmtlcnMucmRzIikKcm5haS5yZXMgPC0gcmVhZFJEUygifi9Db2RlL3Rpc3N1ZV9iaW9tYXJrZXIvZGVwbWFwL3JuYWlfYmlvbWFya2VyX3Jlc19hbGxtYXJrZXJzLnJkcyIpCgoKZHJ1Z1RhcmdldEluZm9BbGwgPC0gZnJlYWQoIn4vQ29kZS9HaXRodWIvcGFjaHlkZXJtL0Fubm90YXRpb25zL0RydWdUYXJnZXRDb21waWxhdGlvbl91cGRhdGVkLmNzdiIpCgoKZHJ1Z1RhcmdldEluZm9BbGwgPC0gZHJ1Z1RhcmdldEluZm9BbGxbQkhLTEFCLkRSVUdJRCAlaW4lIGFsbFJlcyREcnVnXQoKZHJ1Z1RhcmdldEluZm9BbGwgPC0gZHJ1Z1RhcmdldEluZm9BbGxbLCAuKCJUQVJHRVQiID0gdW5pcXVlKFRBUkdFVF9OQU1FKSksIEJIS0xBQi5EUlVHSURdCgpkcnVnVGFyZ2V0SW5mb0FsbCA8LSBkcnVnVGFyZ2V0SW5mb0FsbFtjb21wbGV0ZS5jYXNlcyhkcnVnVGFyZ2V0SW5mb0FsbCksIF0KCmRydWdUYXJnZXRJbmZvQWxsIDwtIGRydWdUYXJnZXRJbmZvQWxsW2RydWdUYXJnZXRJbmZvQWxsJFRBUkdFVCAlaW4lIGdlbmVfaW5mbyRnZW5lX25hbWUsIF0KCmRydWdUYXJnZXRJbmZvQWxsWywgRU5TRyA6PSBnZW5lX2luZm8kVjFbbWF0Y2goVEFSR0VULCBnZW5lX2luZm8kZ2VuZV9uYW1lKV1dCgpjcmlzcHIucmVzLm0gPC0gbGFwcGx5KGNyaXNwci5yZXMsIFwoeCl7CgogICAgdGJsIDwtIGRhdGEudGFibGUocmVzaGFwZTI6Om1lbHQoeFssLCJzaWduaWZpY2FudCIsZHJvcD1GQUxTRV0pKQogICAgdGJsIDwtIHRibFssLTNdCiAgICBjb2xuYW1lcyh0YmwpIDwtIGMoIkdlbmUiLCAiVGFyZ2V0IiwgIlNpZ25pZmljYW50IikKICAgIHRibAp9KQoKCgpjcmlzcHIucmVzLm0gPC0gbGFwcGx5KG5hbWVzKGNyaXNwci5yZXMubSksIGZ1bmN0aW9uKG5tKSB7CiAgICB4eCA8LSBzdHJzcGxpdChubSwgc3BsaXQgPSAiXyIpW1sxXV0KCiAgICB0aXNzdWUgPC0geHhbMV0KICAgIGRydWcgPC0geHhbMl0KICAgIHRibCA8LSBjcmlzcHIucmVzLm1bW25tXV0KICAgIHRibFssRHJ1ZyA6PSBkcnVnXQogICAgdGJsWyxUaXNzdWUgOj0gdGlzc3VlXQogICAgdGJsCn0pCgpjcmlzcHIucmVzLm0gPC0gcmJpbmRsaXN0KGNyaXNwci5yZXMubSkKCmNyaXNwci5yZXMubVssIEdlbmUgOj0gZ3N1YihwYXQgPSAiXFwuWzAtOV0rIiwgcmVwID0gIiIsIHggPSBHZW5lKV0KCmNyaXNwci5yZXMubVssIFRhcmdldCA6PSB0cmltd3MoZ3N1YihwYXQgPSAiXFwoWzAtOV0rXFwpIiwgcmVwID0gIiIsIHggPSBUYXJnZXQpKV0KCmNyaXNwci5yZXMubVssIFRhcmdldEVOU0cgOj0gZ2VuZV9pbmZvJFYxW21hdGNoKFRhcmdldCwgZ2VuZV9pbmZvJGdlbmVfbmFtZSldXQoKY3Jpc3ByLnJlcy5tWywgRGlzdGFuY2UgOj0gaWZlbHNlKEdlbmUgJWluJSBjb2xuYW1lcyhyZWFjdG9tZURpc3QpICYgVGFyZ2V0RU5TRyAlaW4lIGNvbG5hbWVzKHJlYWN0b21lRGlzdCksIHJlYWN0b21lRGlzdFtUYXJnZXRFTlNHLCBHZW5lXSwgTkFfcmVhbF8pLCAuKEdlbmUsIFRhcmdldEVOU0cpXQoKY3Jpc3ByLnJlcy5tIDwtIGNyaXNwci5yZXMubVtjb21wbGV0ZS5jYXNlcyhjcmlzcHIucmVzLm0pXQoKY3Jpc3ByLnJlcy5tWywgYENSSVNQUiBTaWdgIDo9IGlmZWxzZShTaWduaWZpY2FudCA9PSAxLCAiQXNzb2NpYXRlZFxud2l0aCBDUklTUFIiLCAiTm90IEFzc29jaWF0ZWQiKV0KCgojIGZpbHRlciB0byBvbmx5IHRob3NlIHRoYXQgcGFzcyBtZXRhLWFuYWx5c2lzCmNyaXNwci5yZXMubSA8LSBjcmlzcHIucmVzLm1bYWxsU2lnLCAsIG9uID0gYygiR2VuZSIsICJUaXNzdWUiLCAiRHJ1ZyIpLCBub21hdGNoID0gMF0KCmNyaXNwci5yZXMubVssIHdlaWdodCA6PSAxIC8gLk4sIFNpZ25pZmljYW50XQoKCndpbGNveC50ZXN0KHNwbGl0KGNyaXNwci5yZXMubSwgYnkgPSAiQ1JJU1BSIFNpZyIpW1sxXV1bLCBEaXN0YW5jZV0sIHNwbGl0KGNyaXNwci5yZXMubSwgYnkgPSAiQ1JJU1BSIFNpZyIpW1syXV1bLCBEaXN0YW5jZV0pCgoKCmNvbFBhbCA8LSBjKCIjZmI5YTk5IiwgIiNlMzFhMWMiKQoKY3Jpc3ByLnJlcy5tJERpc3RhbmNlIDwtIGZhY3RvcihjcmlzcHIucmVzLm0kRGlzdGFuY2UpCgpnZ3Bsb3QoCiAgICBjcmlzcHIucmVzLm0sCiAgICBhZXMoRGlzdGFuY2UsIHdlaWdodCA9IHdlaWdodCwgZmlsbCA9IGBDUklTUFIgU2lnYCkKKSArCiAgICBnZW9tX2Jhcihwb3NpdGlvbiA9ICJkb2RnZSIpICsKICAgIHRoZW1lX2J3KCkgKwogICAgeGxhYigiRGlzdGFuY2UgdG8gRHJ1ZyBUYXJnZXQiKSArCiAgICB5bGFiKCJQcm9wb3J0aW9uIikgKwogICAgc2NhbGVfZmlsbF9tYW51YWwodmFsdWVzID0gY29sUGFsKSArCiAgICB0aGVtZShsZWdlbmQucG9zaXRpb24gPSBjKDAuNzUsIDAuOCksIGxlZ2VuZC50aXRsZSA9IGVsZW1lbnRfYmxhbmsoKSkKCgpwZGYoImZpZ3VyZXMvcmVhY3RvbWVOZXR3b3JrRGlzdGFuY2VUb1RhcmdldENSSVNQUi5wZGYiLCBoZWlnaHQgPSA0LCB3aWR0aCA9IDQpCmdncGxvdCgKICAgIGNyaXNwci5yZXMubSwKICAgIGFlcyhEaXN0YW5jZSwgd2VpZ2h0ID0gd2VpZ2h0LCBmaWxsID0gYENSSVNQUiBTaWdgKQopICsKICAgIGdlb21fYmFyKHBvc2l0aW9uID0gImRvZGdlIikgKwogICAgdGhlbWVfYncoKSArCiAgICB4bGFiKCJEaXN0YW5jZSB0byBEcnVnIFRhcmdldCIpICsKICAgIHlsYWIoIlByb3BvcnRpb24iKSArCiAgICBzY2FsZV9maWxsX21hbnVhbCh2YWx1ZXMgPSBjb2xQYWwpICsKICAgIHRoZW1lKGxlZ2VuZC5wb3NpdGlvbiA9IGMoMC43NSwgMC44KSwgbGVnZW5kLnRpdGxlID0gZWxlbWVudF9ibGFuaygpKQpkZXYub2ZmKCkKCgoKcm5haS5yZXMubSA8LSBsYXBwbHkocm5haS5yZXMsIFwoeCl7CiAgICB0YmwgPC0gZGF0YS50YWJsZShyZXNoYXBlMjo6bWVsdCh4WywgLCAic2lnbmlmaWNhbnQiLCBkcm9wID0gRkFMU0VdKSkKICAgIHRibCA8LSB0YmxbLCAtM10KICAgIGNvbG5hbWVzKHRibCkgPC0gYygiR2VuZSIsICJUYXJnZXQiLCAiU2lnbmlmaWNhbnQiKQogICAgdGJsCn0pCgoKCnJuYWkucmVzLm0gPC0gbGFwcGx5KG5hbWVzKHJuYWkucmVzLm0pLCBmdW5jdGlvbihubSkgewogICAgeHggPC0gc3Ryc3BsaXQobm0sIHNwbGl0ID0gIl8iKVtbMV1dCgogICAgdGlzc3VlIDwtIHh4WzFdCiAgICBkcnVnIDwtIHh4WzJdCiAgICB0YmwgPC0gcm5haS5yZXMubVtbbm1dXQogICAgdGJsWywgRHJ1ZyA6PSBkcnVnXQogICAgdGJsWywgVGlzc3VlIDo9IHRpc3N1ZV0KICAgIHRibAp9KQoKcm5haS5yZXMubSA8LSByYmluZGxpc3Qocm5haS5yZXMubSkKCnJuYWkucmVzLm1bLCBHZW5lIDo9IGdzdWIocGF0ID0gIlxcLlswLTldKyIsIHJlcCA9ICIiLCB4ID0gR2VuZSldCgpybmFpLnJlcy5tWywgVGFyZ2V0IDo9IHRyaW13cyhnc3ViKHBhdCA9ICJcXChbMC05XStcXCkiLCByZXAgPSAiIiwgeCA9IFRhcmdldCkpXQoKcm5haS5yZXMubVssIFRhcmdldEVOU0cgOj0gZ2VuZV9pbmZvJFYxW21hdGNoKFRhcmdldCwgZ2VuZV9pbmZvJGdlbmVfbmFtZSldXQoKcm5haS5yZXMubVssIERpc3RhbmNlIDo9IGlmZWxzZShHZW5lICVpbiUgY29sbmFtZXMocmVhY3RvbWVEaXN0KSAmIFRhcmdldEVOU0cgJWluJSBjb2xuYW1lcyhyZWFjdG9tZURpc3QpLCByZWFjdG9tZURpc3RbVGFyZ2V0RU5TRywgR2VuZV0sIE5BX3JlYWxfKSwgLihHZW5lLCBUYXJnZXRFTlNHKV0KCnJuYWkucmVzLm0gPC0gcm5haS5yZXMubVtjb21wbGV0ZS5jYXNlcyhybmFpLnJlcy5tKV0KCnJuYWkucmVzLm1bLCBgUk5BaSBTaWdgIDo9IGlmZWxzZShTaWduaWZpY2FudCA9PSAxLCAiQXNzb2NpYXRlZFxud2l0aCBSTkFpIiwgIk5vdCBBc3NvY2lhdGVkIildCgoKIyBmaWx0ZXIgdG8gb25seSB0aG9zZSB0aGF0IHBhc3MgbWV0YS1hbmFseXNpcwpybmFpLnJlcy5tIDwtIHJuYWkucmVzLm1bYWxsU2lnLCAsIG9uID0gYygiR2VuZSIsICJUaXNzdWUiLCAiRHJ1ZyIpLCBub21hdGNoID0gMF0KCnJuYWkucmVzLm1bLCB3ZWlnaHQgOj0gMSAvIC5OLCBTaWduaWZpY2FudF0KCgp3aWxjb3gudGVzdChzcGxpdChybmFpLnJlcy5tLCBieT0iUk5BaSBTaWciKVtbMV1dWyxEaXN0YW5jZV0sIHNwbGl0KHJuYWkucmVzLm0sIGJ5PSJSTkFpIFNpZyIpW1syXV1bLERpc3RhbmNlXSkKCgoKY29sUGFsIDwtIGMoIiNiMmRmOGEiLCIjMzNhMDJjIikKCnJuYWkucmVzLm0kRGlzdGFuY2UgPC0gZmFjdG9yKHJuYWkucmVzLm0kRGlzdGFuY2UpCgpnZ3Bsb3QoCiAgICBybmFpLnJlcy5tLAogICAgYWVzKERpc3RhbmNlLCB3ZWlnaHQgPSB3ZWlnaHQsIGZpbGwgPSBgUk5BaSBTaWdgKQopICsKICAgIGdlb21fYmFyKHBvc2l0aW9uID0gImRvZGdlIikgKwogICAgdGhlbWVfYncoKSArCiAgICB4bGFiKCJEaXN0YW5jZSB0byBEcnVnIFRhcmdldCIpICsKICAgIHlsYWIoIlByb3BvcnRpb24iKSArCiAgICBzY2FsZV9maWxsX21hbnVhbCh2YWx1ZXMgPSBjb2xQYWwpKwogICAgICAgIHRoZW1lKGxlZ2VuZC5wb3NpdGlvbiA9IGMoMC43NSwgMC44KSwgbGVnZW5kLnRpdGxlID0gZWxlbWVudF9ibGFuaygpKQoKCnBkZigiZmlndXJlcy9yZWFjdG9tZU5ldHdvcmtEaXN0YW5jZVRvVGFyZ2V0Uk5BaS5wZGYiLCBoZWlnaHQgPSA0LCB3aWR0aCA9IDQpCmdncGxvdCgKICAgIHJuYWkucmVzLm0sCiAgICBhZXMoRGlzdGFuY2UsIHdlaWdodCA9IHdlaWdodCwgZmlsbCA9IGBSTkFpIFNpZ2ApCikgKwogICAgZ2VvbV9iYXIocG9zaXRpb24gPSAiZG9kZ2UiKSArCiAgICB0aGVtZV9idygpICsKICAgIHhsYWIoIkRpc3RhbmNlIHRvIERydWcgVGFyZ2V0IikgKwogICAgeWxhYigiUHJvcG9ydGlvbiIpICsKICAgIHNjYWxlX2ZpbGxfbWFudWFsKHZhbHVlcyA9IGNvbFBhbCkgKwogICAgdGhlbWUobGVnZW5kLnBvc2l0aW9uID0gYygwLjc1LCAwLjgpLCBsZWdlbmQudGl0bGUgPSBlbGVtZW50X2JsYW5rKCkpCmRldi5vZmYoKQoKCgoKCmBgYAoKCmBgYHtyfQoKCmNyaXNwci5jb3Iud2l0aC50YXJnZXQgPC0gc2FwcGx5KGNyaXNwci5yZXMsIGZ1bmN0aW9uKHgpIGFwcGx5KHhbLCAsICJzaWduaWZpY2FudCIsIGRyb3AgPSBGXSwgMSwgYW55LCBuYS5ybSA9IFQpKQoKCmNyaXNwci5jb3Iud2l0aC50YXJnZXQgPC0gbGFwcGx5KG5hbWVzKGNyaXNwci5jb3Iud2l0aC50YXJnZXQpLCBmdW5jdGlvbihubSkgewogICAgeHggPC0gc3Ryc3BsaXQobm0sIHNwbGl0ID0gIl8iKVtbMV1dCgogICAgdGlzc3VlIDwtIHh4WzFdCiAgICBkcnVnIDwtIHh4WzJdCgogICAgZGF0YS5mcmFtZSgKICAgICAgICBUaXNzdWUgPSB0aXNzdWUsIERydWcgPSBkcnVnLCBHZW5lID0gbmFtZXMoY3Jpc3ByLmNvci53aXRoLnRhcmdldFtbbm1dXSksCiAgICAgICAgc3RhdHVzID0gY3Jpc3ByLmNvci53aXRoLnRhcmdldFtbbm1dXQogICAgKQp9KQoKCmNyaXNwci5jb3Iud2l0aC50YXJnZXQgPC0gcmJpbmRsaXN0KGNyaXNwci5jb3Iud2l0aC50YXJnZXQpCgoKCnJuYWkuY29yLndpdGgudGFyZ2V0IDwtIHNhcHBseShybmFpLnJlcywgZnVuY3Rpb24oeCkgYXBwbHkoeFssICwgInNpZ25pZmljYW50IiwgZHJvcCA9IEZdLCAxLCBhbnksIG5hLnJtID0gVCkpCgoKcm5haS5jb3Iud2l0aC50YXJnZXQgPC0gbGFwcGx5KG5hbWVzKHJuYWkuY29yLndpdGgudGFyZ2V0KSwgZnVuY3Rpb24obm0pIHsKICAgIHh4IDwtIHN0cnNwbGl0KG5tLCBzcGxpdCA9ICJfIilbWzFdXQoKICAgIHRpc3N1ZSA8LSB4eFsxXQogICAgZHJ1ZyA8LSB4eFsyXQoKICAgIGRhdGEuZnJhbWUoCiAgICAgICAgVGlzc3VlID0gdGlzc3VlLCBEcnVnID0gZHJ1ZywgR2VuZSA9IG5hbWVzKHJuYWkuY29yLndpdGgudGFyZ2V0W1tubV1dKSwKICAgICAgICBzdGF0dXMgPSBybmFpLmNvci53aXRoLnRhcmdldFtbbm1dXQogICAgKQp9KQoKCnJuYWkuY29yLndpdGgudGFyZ2V0IDwtIHJiaW5kbGlzdChybmFpLmNvci53aXRoLnRhcmdldCkKCnJuYWkuY29yLndpdGgudGFyZ2V0WywgR2VuZSA6PSBnc3ViKHBhdCA9ICJcXC5bMC05XSsiLCByZXAgPSAiIiwgeCA9IEdlbmUpXQpjcmlzcHIuY29yLndpdGgudGFyZ2V0WywgR2VuZSA6PSBnc3ViKHBhdCA9ICJcXC5bMC05XSsiLCByZXAgPSAiIiwgeCA9IEdlbmUpXQoKCgoKcm5haS5tZXJnZWQgPC0gYWxsUmVzW3JuYWkuY29yLndpdGgudGFyZ2V0LCAsIG9uID0gLihUaXNzdWUsIERydWcsIEdlbmUpXQoKCmFsbFNpZ1ssIFJOQWkgOj0gIk5vdCBBc3NvY2lhdGVkIl0KYWxsU2lnWywgQ1JJU1BSIDo9ICJOb3QgQXNzb2NpYXRlZCJdCgphbGxTaWdbcm5haS5jb3Iud2l0aC50YXJnZXRbKHN0YXR1cyldLCBSTkFpIDo9ICJBc3NvY2lhdGVkXG53aXRoIFJOQWkiLCBvbiA9IC4oRHJ1ZywgR2VuZSwgVGlzc3VlKV0KYWxsU2lnW2NyaXNwci5jb3Iud2l0aC50YXJnZXRbKHN0YXR1cyldLCBDUklTUFIgOj0gIkFzc29jaWF0ZWRcbndpdGggQ1JJU1BSIiwgb24gPSAuKERydWcsIEdlbmUsIFRpc3N1ZSldCgpwcm9wLnRhYmxlKHRhYmxlKGFsbFNpZyRSTkFpKSkKcHJvcC50YWJsZSh0YWJsZShhbGxTaWckQ1JJU1BSKSkKCmBgYAoKCiMgMmQKCmBgYHtyfQoKCgpwZGYoImZpZ3VyZXMvQ1JJU1BSX2JveHBsb3RfZWZmZWN0X3NpemUucGRmIiwgaGVpZ2h0ID0gMywgd2lkdGggPSAzKQpnZ3Bsb3QoCiAgICBhbGxTaWcsCiAgICBhZXMoQ1JJU1BSLCBhYnMoZXN0aW1hdGUpKQopICsKICAgIGdlb21fYm94cGxvdCgpICsKICAgIHRoZW1lX2J3KCkgKwogICAgeGxhYigiIikgKwogICAgeWxhYigiQWJzb2x1dGUgQ29ycmVsYXRpb25cbndpdGggRHJ1ZyBSZXNwb25zZSIpCmRldi5vZmYoKQpnZ3Bsb3QoCiAgICBhbGxTaWcsCiAgICBhZXMoQ1JJU1BSLCBhYnMoZXN0aW1hdGUpKQopICsKICAgIGdlb21fYm94cGxvdCgpICsKICAgIHRoZW1lX2J3KCkgKwogICAgeGxhYigiIikgKwogICAgeWxhYigiQWJzb2x1dGUgQ29ycmVsYXRpb25cbndpdGggRHJ1ZyBSZXNwb25zZSIpCgpnZ3Bsb3QoCiAgICBhbGxTaWcsCiAgICBhZXMoQ1JJU1BSLCBhYnMoZXN0aW1hdGUpKQopICsKICAgIGdlb21fdmlvbGluKGZpbGwgPSAiZ3JheTcwIikgKwogICAgZ2VvbV9ib3hwbG90KHdpZHRoID0gMC4zKSArCiAgICB0aGVtZV9idygpICsKICAgIHlsYWIoIkFic29sdXRlIENvcnJlbGF0aW9uXG53aXRoIERydWcgUmVzcG9uc2UiKSArCiAgICB0aGVtZShsZWdlbmQucG9zaXRpb24gPSBjKDAuODUsIDAuODUpKSArIHhsYWIoIiIpCgpwZGYoImZpZ3VyZXMvQ1JJU1BSX3Zpb2xpbl9lZmZlY3Rfc2l6ZS5wZGYiLCBoZWlnaHQgPSAzLCB3aWR0aCA9IDMpCmdncGxvdCgKICAgIGFsbFNpZywKICAgIGFlcyhDUklTUFIsIGFicyhlc3RpbWF0ZSkpCikgKwogICAgZ2VvbV92aW9saW4oZmlsbCA9ICJncmF5NzAiKSArCiAgICBnZW9tX2JveHBsb3Qod2lkdGggPSAwLjMpICsKICAgIHRoZW1lX2J3KCkgKwogICAgeWxhYigiQWJzb2x1dGUgQ29ycmVsYXRpb25cbndpdGggRHJ1ZyBSZXNwb25zZSIpICsgeGxhYigiIikKZGV2Lm9mZigpCgoKCnBkZigiZmlndXJlcy9STkFpX2JveHBsb3RfZWZmZWN0X3NpemUucGRmIiwgaGVpZ2h0ID0gMywgd2lkdGggPSAzKQpnZ3Bsb3QoCiAgICBhbGxTaWcsCiAgICBhZXMoUk5BaSwgYWJzKGVzdGltYXRlKSkKKSArCiAgICBnZW9tX2JveHBsb3QoKSArCiAgICB0aGVtZV9idygpICsKICAgIHhsYWIoIiIpICsKICAgIHlsYWIoIkFic29sdXRlIENvcnJlbGF0aW9uXG53aXRoIERydWcgUmVzcG9uc2UiKQpkZXYub2ZmKCkKZ2dwbG90KAogICAgYWxsU2lnLAogICAgYWVzKFJOQWksIGFicyhlc3RpbWF0ZSkpCikgKwogICAgZ2VvbV9ib3hwbG90KCkgKwogICAgdGhlbWVfYncoKSArCiAgICB4bGFiKCIiKSArCiAgICB5bGFiKCJBYnNvbHV0ZSBDb3JyZWxhdGlvblxud2l0aCBEcnVnIFJlc3BvbnNlIikKCgoKZ2dwbG90KAogICAgYWxsU2lnLAogICAgYWVzKFJOQWksIGFicyhlc3RpbWF0ZSkpCikgKwogICAgZ2VvbV92aW9saW4oZmlsbCA9ICJncmF5NzAiKSArIGdlb21fYm94cGxvdCh3aWR0aD0wLjMpICsKICAgIHRoZW1lX2J3KCkgKwogICAgeWxhYigiQWJzb2x1dGUgQ29ycmVsYXRpb25cbndpdGggRHJ1ZyBSZXNwb25zZSIpICsgCiAgICB0aGVtZShsZWdlbmQucG9zaXRpb24gPSBjKDAuODUsIDAuODUpKSArIHhsYWIoIiIpCgpwZGYoImZpZ3VyZXMvUk5BaV92aW9saW5fZWZmZWN0X3NpemUucGRmIiwgaGVpZ2h0ID0gMywgd2lkdGggPSAzKQpnZ3Bsb3QoCiAgICBhbGxTaWcsCiAgICBhZXMoUk5BaSwgYWJzKGVzdGltYXRlKSkKKSArCiAgICBnZW9tX3Zpb2xpbihmaWxsID0gImdyYXk3MCIpICsKICAgIGdlb21fYm94cGxvdCh3aWR0aCA9IDAuMykgKwogICAgdGhlbWVfYncoKSArCiAgICB5bGFiKCJBYnNvbHV0ZSBDb3JyZWxhdGlvblxud2l0aCBEcnVnIFJlc3BvbnNlIikgKyB4bGFiKCIiKQpkZXYub2ZmKCkKCgoKd2lsY294LnRlc3Qoc3BsaXQoYWxsU2lnWywgYWJzKGVzdGltYXRlKV0sIGFsbFNpZyRSTkFpKVtbMV1dLCBzcGxpdChhbGxTaWdbLCBhYnMoZXN0aW1hdGUpXSwgYWxsU2lnJFJOQWkpW1syXV0pCgp3aWxjb3gudGVzdChzcGxpdChhbGxTaWdbLCBhYnMoZXN0aW1hdGUpXSwgYWxsU2lnJENSSVNQUilbWzFdXSwgc3BsaXQoYWxsU2lnWywgYWJzKGVzdGltYXRlKV0sIGFsbFNpZyRDUklTUFIpW1syXV0pCgoKYGBgCgoKIyAyZgoKCmBgYHtyfQoKCmFsbFJlc1ssIFJOQWkgOj0gIk5vdCBBc3NvY2lhdGVkIl0KYWxsUmVzWywgQ1JJU1BSIDo9ICJOb3QgQXNzb2NpYXRlZCJdCgphbGxSZXNbcm5haS5jb3Iud2l0aC50YXJnZXRbKHN0YXR1cyldLCBSTkFpIDo9ICJBc3NvY2lhdGVkXG53aXRoIFJOQWkiLCBvbiA9IC4oRHJ1ZywgR2VuZSwgVGlzc3VlKV0KYWxsUmVzW2NyaXNwci5jb3Iud2l0aC50YXJnZXRbKHN0YXR1cyldLCBDUklTUFIgOj0gIkFzc29jaWF0ZWRcbndpdGggQ1JJU1BSIiwgb24gPSAuKERydWcsIEdlbmUsIFRpc3N1ZSldCgphbGxSZXNbLGBQYXNzZXMgTWV0YS1BbmFseXNpc2AgOj0gIk5vIl0KCmFsbFJlc1tCRl9wX2FsbDw9MC4wNSxgUGFzc2VzIE1ldGEtQW5hbHlzaXNgOj0iWWVzIl0KCmFsbFJlc1ssIHRhYmxlKGBQYXNzZXMgTWV0YS1BbmFseXNpc2AsIFJOQWkpXQphbGxSZXNbLCB0YWJsZShgUGFzc2VzIE1ldGEtQW5hbHlzaXNgLCBDUklTUFIpXQoKCmZpc2hlci50ZXN0KGFsbFJlc1ssIHRhYmxlKGBQYXNzZXMgTWV0YS1BbmFseXNpc2AsIFJOQWkpXVssIGMoMiwgMSldKQpmaXNoZXIudGVzdChhbGxSZXNbLCB0YWJsZShgUGFzc2VzIE1ldGEtQW5hbHlzaXNgLCBDUklTUFIpXVssIGMoMiwgMSldKQoKYGBg